home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / libcs / vmnlist.c < prev    next >
C/C++ Source or Header  |  1995-06-12  |  4KB  |  120 lines

  1. /*
  2.  * Copyright (c) 1990 Carnegie Mellon University
  3.  * All Rights Reserved.
  4.  * 
  5.  * Permission to use, copy, modify and distribute this software and its
  6.  * documentation is hereby granted, provided that both the copyright
  7.  * notice and this permission notice appear in all copies of the
  8.  * software, derivative works or modified versions, and any portions
  9.  * thereof, and that both notices appear in supporting documentation.
  10.  *
  11.  * THE SOFTWARE IS PROVIDED "AS IS" AND CARNEGIE MELLON UNIVERSITY
  12.  * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
  13.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.  IN NO EVENT
  14.  * SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR ANY SPECIAL, DIRECT,
  15.  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  16.  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
  17.  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  18.  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  19.  *
  20.  * Users of this software agree to return to Carnegie Mellon any
  21.  * improvements or extensions that they make and grant Carnegie the
  22.  * rights to redistribute these changes.
  23.  *
  24.  * Export of this software is permitted only after complying with the
  25.  * regulations of the U.S. Deptartment of Commerce relating to the
  26.  * Export of Technical Data.
  27.  */
  28. /*
  29.  * quick routine for loading up the short nlist info from vmunix.
  30.  *
  31.  * return zero on success, 1 on failure
  32.  **********************************************************************
  33.  * HISTORY
  34.  * $Log:    vmnlist.c,v $
  35.  * Revision 1.3  90/12/11  18:00:24  mja
  36.  *     Add copyright/disclaimer for distribution.
  37.  * 
  38.  * 06-Nov-87  Glenn Marcy (gm0w) at Carnegie-Mellon University
  39.  *    Moved location of vmnlist file.
  40.  *
  41.  * 06-Dec-85  Glenn Marcy (gm0w) at Carnegie-Mellon University
  42.  *    Added code to return as soon as all symbols have been found.
  43.  *
  44.  * 26-Nov-85  Glenn Marcy (gm0w) at Carnegie-Mellon University
  45.  *    One more try...  When we initialize the nlist array, place the
  46.  *    number of entries into a counter.  Subtract one from the counter
  47.  *    every time that we find a symbol that we are looking for.  If we
  48.  *    didn't find a symbol the counter will be positive and we should
  49.  *    indicate that nlist should be called.
  50.  *
  51.  * 06-Nov-85  Glenn Marcy (gm0w) at Carnegie-Mellon University
  52.  *    Fixed incorrect terminating condition check.
  53.  *
  54.  * 05-Nov-85  Rudy Nedved (ern) at Carnegie-Mellon University
  55.  *    Created.
  56.  *
  57.  **********************************************************************
  58.  */
  59. #include <stdio.h>
  60. #include <ctype.h>
  61. #include <nlist.h>
  62. #include <pwd.h>
  63. #include <sys/param.h>
  64. #include <sys/stat.h>
  65.  
  66. #if    CMUCS
  67. #define NLISTFILE "/usr/cs/etc/vmnlist"
  68. #else    CMUCS
  69. #define NLISTFILE "/etc/vmnlist"
  70. #endif    CMUCS
  71.  
  72. vmnlist(nlistf,nl)
  73. char *nlistf;
  74. struct nlist nl[];
  75. {
  76.     register FILE *f;
  77.     struct stat stb,stb2;
  78.     char symnam[100];
  79.     register char *p;
  80.     struct nlist n;
  81.     register struct nlist *t;
  82.     register nlsize;
  83.  
  84.     if (strcmp (nlistf, "/vmunix"))
  85.     return 1;
  86.     if (stat ("/vmunix", &stb) < 0 || stat (NLISTFILE, &stb2) < 0)
  87.     return 1;
  88.     if (stb.st_mtime >= stb2.st_mtime || stb2.st_size == 0)
  89.     return 1;
  90.     if ((f = fopen (NLISTFILE, "r")) == NULL)
  91.     return 1;
  92.     nlsize = 0;
  93.     for (t=nl; t->n_name != NULL && t->n_name[0] != '\0'; ++t) {
  94.     t->n_type = 0;
  95.     t->n_value = 0;
  96.     nlsize++;
  97.     }
  98.     for(;;) {
  99.     p = symnam;
  100.     while ((*p++ = fgetc(f)) != '\0' && !feof(f))
  101.         ;
  102.     if (feof(f)) break;
  103.     if (fread(&n, sizeof(struct nlist), 1, f) != 1) break;
  104.     /* find the symbol in nlist */
  105.     for (t=nl; t->n_name != NULL && t->n_name[0] != '\0'; ++t)
  106.         if (t->n_type == 0 && t->n_value == 0 &&
  107.         strcmp(symnam,t->n_name) == 0) {
  108.         n.n_name = t->n_name;
  109.         *t = n;
  110.         if (--nlsize == 0) {
  111.             fclose(f);
  112.             return(0);
  113.         }
  114.         break;
  115.         }
  116.     }
  117.     fclose(f);
  118.     return(1);
  119. }
  120.